home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 12 / Amiga Format AFCD12 (Apr 1997, Issue 96).iso / -in_the_mag- / emulation / fs1541 / makefile < prev    next >
Makefile  |  1997-02-09  |  571b  |  27 lines

  1. #
  2. # Makefile for `FS1541' for use with GCC (ADE).
  3. #
  4.  
  5. CC =        gcc
  6. CCFLAGS =    -m68000 -O3 -Wall
  7.  
  8. OBJECTS =    startup.o main.o packet.o disk.o volume.o support.o diskimage.o
  9.  
  10. 1541-handler:    $(OBJECTS)
  11.         $(CC) $(CCFLAGS) -s -noixemul -nostdlib -nostartfiles -o 1541-handler $(OBJECTS) -lamiga -lnix
  12.         cp 1541-handler /l/1541-handler
  13.  
  14. .s.o:
  15.         $(CC) $(CCFLAGS) -c $*.s
  16.  
  17. .c.o:
  18.         $(CC) $(CCFLAGS) -c $*.c
  19.  
  20. startup.o:    startup.s
  21. main.o:        main.c main.h
  22. packet.o:    packet.c packet.h
  23. disk.o:        disk.c disk.h
  24. volume.o:    volume.c volume.h
  25. support.o:    support.c support.h
  26. diskimage.o:    diskimage.c
  27.